home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / util / boot / addmem301.lha / AddMem / Catalogs / AddMem.cd < prev    next >
Text File  |  1994-07-10  |  3KB  |  79 lines

  1. #language english
  2. #version 3
  3. ;AddMem V3.0
  4. ;
  5. ;The help text
  6. _help (//)
  7. Usage: AddMem Startaddress Endaddress [CheckMem] [A1000Fast] [32Bit]\n\
  8.        [LOCAL] [!PUBLIC] [CHIP] [FAST] [!24BITDMA] [PRIORITY] [RESIDENT]\n\
  9. AddMem can be called only with the start and end addresses. In this case\n\
  10. the memory flags will be set according to the position of the memory\n\
  11. block: If the memory block is located below $200000, the memory will be\n\
  12. CHIP memory, otherwise is will be FAST memory. If the memory block is\n\
  13. located below $1000000, it will be of 24BITDMAable. Of course the memory\n\
  14. block will always be PUBLIC.\n\
  15. The arguments:\n\
  16.  - The start and end addresses of the memory block must be aligned to\n\
  17.    MEMBLOCKSIZE (currently eight).\n\
  18.  - If CHeckMem is specified, the memory block will be tested bitwise.\n\
  19.  - A1000Fast sets the flags to PUBLIC|FAST|LOCAL|24BITDMA. The priority\n\
  20.    is set to 0. The memory must be located in the range from $200000\n\
  21.    and $A00000.\n\
  22.  - 32Bit sets the flags to PUBLIC|FAST and the priority to +5. If the\n\
  23.    end address is below $1000000, the Flag 24BitDMA will be set, too.\n\
  24.  - !PUBLIC forces the memory block to be not PUBLIC. Shouldn't be set.\n\
  25.  - CHIP forces the memory type to CHIP. Shouldn't be necessary\n\
  26.  - FAST forces the memory type to FAST.\n\
  27.  - !24BITDMA forces the memory block to be not 24BITDMAable.\n\
  28.  - LOCAL should be set if the the memory is not on an AutoConfig card.\n\
  29.  - PRIORITY defaults to 0. It determines which memory block will be\n\
  30.    used first. For normal FastMem it should be 0, for 32 bit memory +5.\n
  31. ;
  32. ;Error: Start address should not be zero
  33. SNNTxt (//)
  34. Start address must not be zero.\n
  35. ;
  36. ;Error: Start address should be aligned to MEMBLOCKSIZE bytes
  37. SBATxt (//)
  38. Start address must be aligned to 8.\n
  39. ;
  40. ;Error: End address should not be zero
  41. ENNTxt (//)
  42. End address must not be zero.\n
  43. ;
  44. ;Error: End address should be aligned to MEMBLOCKSIZE bytes
  45. EBATxt (//)
  46. End address must be aligned to 8.\n
  47. ;
  48. ;Error: End address should be higher than start address
  49. SBETxt (//)
  50. Start address must be lower than end address.\n
  51. ;
  52. ;Error: Memory test failed
  53. MTTxt (//)
  54. WARNING: The requested memory has an error.\n
  55. ;
  56. ;Error: Bad memory range for A1000Fast
  57. AFTxt (//)
  58. Memory range not suitable for A1000Fast.\n
  59. ;
  60. ;Error: Bad priority value
  61. BPTxt (//)
  62. Priority must be between -128 and 127.\n
  63. ;
  64. ;Error: Memory would collide with chips
  65. BRTxt (//)
  66. The requested memory range is (partially) located in reserved areas.\n
  67. ;
  68. ;Error: Memory already available
  69. MATxt (//)
  70. The requested memory range is already (partially) available.\n
  71. ;
  72. ;Error: Memory partially not mounted
  73. BMTxt (//)
  74. WARNING: The requested memory seems to be (partially) not present.\n
  75. ;
  76. ;Error: Couldn't allocate memory for CoolCapture Program
  77. NMTxt (//)
  78. Couldn't allocate memory for reset routine.\n
  79.